home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Dm101.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  675 b   |  62 lines

  1. global gMasterData, gSection
  2.  
  3. on GoOn
  4.   stopSound2()
  5.   case gSection of
  6.     #intro:
  7.       go1()
  8.     1:
  9.       go2()
  10.     2:
  11.       go3()
  12.     3:
  13.       go4()
  14.     4:
  15.       go5()
  16.     5:
  17.       go6()
  18.     6:
  19.       go7()
  20.     7:
  21.       leaveThisMovie()
  22.   end case
  23. end
  24.  
  25. on goBack
  26.   stopSound2()
  27.   case gSection of
  28.     1:
  29.       goIntro()
  30.     2:
  31.       go1()
  32.     3:
  33.       go2()
  34.     4:
  35.       go3()
  36.     5:
  37.       go4()
  38.     6:
  39.       go5()
  40.     7:
  41.       go6()
  42.   end case
  43. end
  44.  
  45. on leaveThisMovie
  46.   if iAmActivated(gMasterData) then
  47.     getPrintData()
  48.   end if
  49.   stopSound2()
  50.   cursor(4)
  51.   go(1, "Menu2")
  52. end
  53.  
  54. on notePadButton
  55.   DoNotepad()
  56. end
  57.  
  58. on continueNext
  59.   stopSound2()
  60.   go(the frame + 1)
  61. end
  62.